home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / fddev202.arc / PASCAL.ARC / MODEM.INC < prev    next >
Text File  |  1991-10-01  |  1KB  |  33 lines

  1. (*
  2. **  Modem.Inc (FrontDoor)
  3. **
  4. **  Copyright 1991 Joaquim H. Homrighausen. All rights reserved.
  5. **
  6. **  MODEM.FD format for FrontDoor 2.01+
  7. **
  8. **  Last revision:  91-10-02
  9. **
  10. **  -------------------------------------------------------------------------
  11. **  This information is not necessarily final and is subject to change at any
  12. **  given time without further notice
  13. **  -------------------------------------------------------------------------
  14. *)
  15.  
  16. (*
  17. **  The "MatchStr" and "SendStr" fields are NUL terminated strings
  18. *)
  19.  
  20. TYPE
  21.   ModemRec  = RECORD
  22.     MatchStr: Array[1..24] of char;                        (*String to match*)
  23.     SendStr : Array[1..32] of char;                         (*String to send*)
  24.     Flags   : word;                                          (*Various flags*)
  25.   End;
  26.  
  27. CONST
  28.   MODEM_MAXENTRY  = 256;                 (*Maximum number of entries in list*)
  29.   MODEM_INACTIVE  = $0001;                         (*Ignore string, inactive*)
  30.   MODEM_DELETED   = $8000;                           (*Never written to disk*)
  31.  
  32. (* end of file "Modem.Inc" *)
  33.